ISAPI (Internet Server Application Program Interface) is a protocol
used by Windows based computers to run a dynamic application loading an external module
in the web server process address space.
In order to use ISAPI, you must create a DLL (dynamic link library) that exports some symbols called by the web server.<br />
<br />
<span class="warning">Warning</span>: If an ISAPI application crashes it may cause the calling application to fail also so it can be a MyServer crash cause.<br />
<br />
<br />
For more information, you can read Microsoft's <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccore98/HTML/_core_isapi_server_extensions_and_filters.asp">ISAPI Overview</a>.<br />